Skip to main content

How to Access a Service in Another Namespace

#services #kubernetes #externalname #namespaces #dns #k8s

To access services in other namespaces referring only by service-name we need the below pattern.

We need to use the "bridge" pattern - which is basically creating a service in the current namespace using external name and service DNS such as

kind: Service
apiVersion: v1
metadata:
name: service-y
namespace: namespace-a
spec:
type: ExternalName
externalName: service-y.namespace-b.svc.cluster.local
ports:
- port: 80

For simple access, Kubernetes resolves the DNS such as <service-name>.<namespace>.svc.cluster.local